home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / dutil / Makefile < prev    next >
Makefile  |  1997-09-09  |  1KB  |  54 lines

  1. # Makefile for linux/UNIX
  2. #
  3. # (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  4. # CONFIDENTIAL, This is unpublished proprietary source code owned by
  5. # Obvious Implementations Corp.  This material contains trade secrets of
  6. # Obvious Implementations Corp.
  7.  
  8. EXES= bintohex fdtolib fdtopragma istrip lbmake libtos \
  9.       makeproto romable hunks Join
  10.  
  11. ED= ../../ubin/
  12.  
  13. CFLAGS= -Wall -Wstrict-prototypes -O2 -I../.. -DREGISTERED -DCOMMERCIAL -DNO_ASM -DINTELBYTEORDER
  14. LDFLAGS= -L../../ulib -lamiga
  15.  
  16. all: $(EXES)
  17.  
  18. bintohex: bintohex.c
  19.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  20.  
  21. fdtolib: fdtolib.c
  22.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  23.  
  24. fdtopragma: fdtopragma.c
  25.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  26.  
  27. istrip: istrip.c
  28.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  29.  
  30. lbmake: lbmake.c
  31.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  32.  
  33. libtos: libtos.c
  34.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  35.  
  36. makeproto: makeproto.c
  37.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  38.  
  39. romable: romable.c
  40.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  41.  
  42. hunks: hunks.c
  43.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  44.  
  45. Join: Join.c
  46.     gcc $(CFLAGS) $< -o $@ $(LDFLAGS)
  47.  
  48. install:
  49.     install -m 0755 $(EXES) $(ED)
  50.  
  51. clean:
  52.     rm -f $(EXES)
  53.  
  54.